home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 March / CHIP Mart 1997.iso / SurfCam / SURFCAM.Z / JAPAX.E2 < prev    next >
Text File  |  1996-04-01  |  3KB  |  95 lines

  1. name Japax EDM
  2.  
  3. % 00
  4. / 00
  5. O >4
  6. N >4
  7. G >2
  8. X ->3.>4
  9. Y ->3.>4
  10. Z ->3.>4
  11. A ->3.>4
  12. I ->3.>4
  13. J ->3.>4
  14. K ->3.>4
  15. Q ->3.>4
  16. R ->3.>4
  17. P >40
  18. F >3.1
  19. H >2
  20. D >2
  21. T >2
  22. M >2
  23. S >4
  24.  
  25. ModalLetters X Y Z F R                # List of letters that are modal    
  26.  
  27. ModalGs                               # List of g codes that are modal    
  28.  
  29. Sequence#s N 0 1 1                    # Char, freq, incr & start          
  30. First#? N                             # Y or N  'Output 1st sequence no.  
  31. Last#? N                              # Y or N  'Output last sequence no. 
  32.  
  33. HCode X                               # X or X U  'Horizontal char.       
  34. VCode Y                               # Y or Y V  'Vertical char.         
  35. Dcode Z                               # Depth char.                       
  36. FeedCode F                            # Feed rate char.                   
  37.  
  38. Comment ( )                           # Begin End comment char.           
  39.  
  40. Coolant 8 9 7                         # On, Off & Mist m codes            
  41. DComp 41 42 40                        # Left, Right & Cancel m codes      
  42. LComp 43 49                           # On & Off codes                    
  43.  
  44. Feed G1                             # Linear move                       
  45. Rapid G0                            # Rapid positioning word            
  46. Cw G2                               # Circular move clockwise           
  47. Ccw G3                              # Circular move counter clockwise   
  48.  
  49. Inc/Abs G 91 90                       # Inc & Abs char. & values          
  50.  
  51. Work G                                # Work offset register              
  52.  
  53. CtrCode I J                           # I J or R or I J K L               
  54.  
  55. Spaces? N                             # Y or N  'Spaces between words     
  56.  
  57. Incremental? N                        # Y or N  'Inc or abs output        
  58. CtrIncremental? Y                     # Y or N  'Inc or abs I & J         
  59. ByQuadrants? N                        # Y or N  'Break arcs at quadrants  
  60.  
  61. Inch/MM 20 21                         # Inch & Metric g codes             
  62.  
  63. UppercaseComments? Y                  # Y or N 'Require uppercase comments
  64.  
  65. StartCode                             # Start of the program              
  66. %0
  67. G[Unitmode]
  68. G92 X0 Y0
  69. End
  70.  
  71. 1stToolChange                         # First tool change                 
  72. G0 X[H] Y[V]
  73. End
  74.  
  75. Infeed                                # Enable cutter comp                
  76. G[Side] X[H] Y[V] A[Lcomp] D[Dcomp]
  77. end
  78.  
  79. Outfeed                               # Disable cutter comp               
  80. G1 G40 X[H] Y[V]
  81. end
  82.  
  83. ToolChange                            # Secondary tool changes            
  84. G0
  85. M1
  86. M[Direct] S[Speed]
  87. G0 X[H] Y[V]
  88. End
  89.  
  90. EndCode                               # End of the program                
  91. A0 D0
  92. G40 M02
  93. %0
  94. End
  95.